home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacFormat 1997 April
/
macformat-049.iso
/
mac
/
Shareware Plus
/
Developers
/
dropg++
/
usr
/
src
/
examples
/
test.cc
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1996-09-17
|
181 b
|
12 lines
|
[
TEXT/R*ch
]
#include <stdlib.h>
#include <iomanip.h>
main()
{
cout << "Hello, world" << endl;
cout << dec << 1234 << ' '
<< hex << 1234 << ' '
<< oct << 1234 << endl;
}